home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 76 / MF_UK_76_1.iso / Education Feature / MicroWorlds 2.03 Try Me / MicroWorlds 2.03 Try Me.rsrc / TEXT_784_waituntil.txt < prev    next >
Encoding:
Text File  |  1998-05-08  |  350 b   |  13 lines

  1. waituntil true-or-false-list-to-run 
  2.  
  3. Tells MicroWorlds to wait until true-or-false-list-to-run  is true before running another instruction. The input must be an instruction list that reports either true or false when it is run. 
  4.  
  5. Example:
  6.  
  7. The turtle will move only after the melody is over. 
  8.  
  9. to bounce
  10. melody1
  11. waituntil [done? [melody1]]
  12. fd 50
  13. end